PDF Plugin for Xojo

Page.TextRenderingModeEnum Enum

Enum that represents text rendering modes.

enum Page.TextRenderingModeEnum

Constants

FILL = 0This is the default setting - the text is filled using the FillColor
STROKE = 1Outlines of the text are drawn using the StrokeColor
FILL_THEN_STROKE = 2Combination of FILL and STROKE, the text is first filled using the FillColor and then outlines are drawn using StrokeColor.
INVISIBLE = 3Text is drawn invisible. But you can still select the text in the generated PDF.
FILL_CLIPPING = 4The text is filled using the FillColor. After its done the current clipping path is set to the text.
STROKE_CLIPPING = 5Outlines of the text are drawn using the StrokeColor. After its done the current clipping path is set to the text.
FILL_STROKE_CLIPPING = 6Combination of FILL_CLIPPING and STROKE_CLIPPING, the text is first filled using the FillColor and then outlines are drawn using StrokeColor. After its done the current clipping path is set to the text.
CLIPPING = 7Draws nothing but sets current clipping path to the text.